home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / programming / other / python-1.52 / demo / sockets / readme < prev    next >
Text File  |  1999-06-14  |  877b  |  23 lines

  1. This directory contains some demonstrations of the socket module:
  2.  
  3. broadcast.py         Broadcast the time to radio.py.
  4. echosvr.py        About the simplest TCP server possible.
  5. finger.py        Client for the 'finger' protocol.
  6. ftp.py            A very simple ftp client.
  7. gopher.py        A simple gopher client.
  8. radio.py        Receive time broadcasts from broadcast.py.
  9. telnet.py        Client for the 'telnet' protocol.
  10. throughput.py        Client and server to measure TCP throughput.
  11. unixclient.py        Unix socket example, client side
  12. unixserver.py        Unix socket example, server side
  13. udpecho.py        Client and server for the UDP echo protocol.
  14.  
  15. The following file is only relevant on SGI machines (or other systems
  16. that support multicast):
  17.  
  18. mcast.py        A Python translation of
  19.             /usr/people/4Dgifts/examples/network/mcast.c
  20.             (Note that IN.py is in ../../lib/sgi.)
  21.  
  22. See also ../../lib/nntp.py for another example of socket code.
  23.